home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / shell-tools / wbstart / dev / c / examples / dmakefile < prev    next >
Encoding:
Makefile  |  1996-03-13  |  311 b   |  18 lines

  1. #
  2. # DMakefile  V1.0
  3. #
  4. # Makefile for wbstart.library C examples
  5. #
  6. #  WBStarter - Use wbstart.library from shell
  7. #
  8. # (c) 1991-1996 Stefan Becker
  9. #
  10.  
  11. FLAGS = -3.1 -mRR -mi -ms -r -proto -I /include -L /dlib
  12. LIBS  = -lwbstart
  13.  
  14. all : WBStarter
  15.  
  16. WBStarter : WBStarter.c
  17.       dcc $(FLAGS) -o %(left) %(right) $(LIBS)
  18.